Overview | Package | Class | Tree | Deprecated | Index | Help |
Java Platform 1.1.7 |
||
PREV CLASS | NEXT CLASS | FRAMES | NO FRAMES | ||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--com.sun.java.swing.border.AbstractBorder | +--com.sun.java.swing.border.EtchedBorder
Warning: serialized objects of this class will not be compatible with future swing releases. The current serialization support is appropriate for short term storage or RMI between Swing1.0 applications. It will not be possible to load serialized Swing1.0 objects with future releases of Swing. The JDK1.2 release of Swing will be the compatibility baseline for the serialized form of Swing objects.
Field Summary | |
int | etchType
|
java.awt.Color | highlight
|
static int | LOWERED
Lowered etched type. |
static int | RAISED
Raised etched type. |
java.awt.Color | shadow
|
Constructor Summary | |
EtchedBorder()
Creates a lowered etched border whose colors will be derived from the background color of the component passed into the paintBorder method. |
|
EtchedBorder(int etchType)
Creates an etched border with the specified etch-type whose colors will be derived from the background color of the component passed into the paintBorder method. |
|
EtchedBorder(java.awt.Color highlight,
java.awt.Color shadow)
Creates a lowered etched border with the specified highlight and shadow colors. |
|
EtchedBorder(int etchType,
java.awt.Color highlight,
java.awt.Color shadow)
Creates an etched border with the specified etch-type, highlight and shadow colors. |
Method Summary | |
java.awt.Insets | getBorderInsets(java.awt.Component c)
Returns the insets of the border. |
int | getEtchType()
Returns which etch-type is set on the etched border. |
java.awt.Color | getHighlightColor(java.awt.Component c)
Returns the highlight color of the etched border. |
java.awt.Color | getShadowColor(java.awt.Component c)
Returns the shadow color of the etched border. |
boolean | isBorderOpaque()
Returns whether or not the border is opaque. |
void | paintBorder(java.awt.Component c,
java.awt.Graphics g,
int x,
int y,
int width,
int height)
Paints the border for the specified component with the specified position and size. |
Methods inherited from class com.sun.java.swing.border.AbstractBorder | |
getBorderInsets, getInteriorRectangle, getInteriorRectangle, isBorderOpaque, paintBorder |
Methods inherited from class java.lang.Object | |
clone, equals, finalize, getClass, hashCode, notifyAll, notify, toString, wait, wait, wait |
Field Detail |
public static final int RAISED
public static final int LOWERED
protected int etchType
protected java.awt.Color highlight
protected java.awt.Color shadow
Constructor Detail |
public EtchedBorder()
public EtchedBorder(int etchType)
etchType
- the type of etch to be drawn by the borderpublic EtchedBorder(java.awt.Color highlight, java.awt.Color shadow)
highlight
- the color to use for the etched highlight
shadow
- the color to use for the etched shadowpublic EtchedBorder(int etchType, java.awt.Color highlight, java.awt.Color shadow)
etchType
- the type of etch to be drawn by the border
highlight
- the color to use for the etched highlight
shadow
- the color to use for the etched shadowMethod Detail |
public void paintBorder(java.awt.Component c, java.awt.Graphics g, int x, int y, int width, int height)
c
- the component for which this border is being painted
g
- the paint graphics
x
- the x position of the painted border
y
- the y position of the painted border
width
- the width of the painted border
height
- the height of the painted borderpublic java.awt.Insets getBorderInsets(java.awt.Component c)
c
- the component for which this border insets value appliespublic boolean isBorderOpaque()
public int getEtchType()
public java.awt.Color getHighlightColor(java.awt.Component c)
public java.awt.Color getShadowColor(java.awt.Component c)
Overview | Package | Class | Tree | Deprecated | Index | Help |
Java Platform 1.1.7 |
||
PREV CLASS | NEXT CLASS | FRAMES | NO FRAMES | ||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |